home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
BUTTONS
/
RBUTTON
/
BPREG.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-11-05
|
316b
|
20 lines
unit BPReg;
interface
procedure Register;
implementation
uses
Classes, Rbutton, Bpanel;
procedure Register;
begin
RegisterComponents('Brendan',[TRoundButton,TBevelPanel]);
{ to automatically place these components into a page, change
'Brendan' to the prefered location }
end;
end.